home *** CD-ROM | disk | FTP | other *** search
/ Champak 106 / Vol 106.iso / games / i_am_leg.swf / scripts / DefineSprite_747 / frame_3 / DoAction.as
Encoding:
Text File  |  2010-04-12  |  318 b   |  16 lines

  1. this._x -= _root.speedausgleich;
  2. if(_root.player.hitbox.hitTest(this.life) == true)
  3. {
  4.    if(_root.player_life < 5)
  5.    {
  6.       _root.player_life += 1;
  7.       _root.mc_life.gotoAndStop("l" + _root.player_life);
  8.    }
  9.    else
  10.    {
  11.       _root.score_txt += 200;
  12.    }
  13.    gotoAndStop("collected");
  14.    play();
  15. }
  16.